home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / LINEDRAW.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-09  |  152 b   |  12 lines

  1. // util.lib library functions
  2. #include <iostream.h>
  3.  
  4. void line_draw(void)
  5. {
  6.     int i;
  7.     cout << "\n";
  8.  
  9.     for (i=0;i<=79;i++) {
  10.     cout << "─";
  11.     }
  12. }